分享至
與Java類似
class Box<T>(t: T) { var value = t }
建立物件方式如下
val box: Box<Int> = Box<Int>(1)
Kotlin會依據參數的類型自動推斷泛型的型別
val box = Box(1)
IT邦幫忙